home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Tech Arsenal 1
/
Tech Arsenal (Arsenal Computer).ISO
/
tek-01
/
wlib11_4.zip
/
HEADERS.EXE
/
CURSOR.H
< prev
next >
Wrap
Text File
|
1991-02-27
|
614b
|
27 lines
/*** CURSOR .H ***/
/* Written By P.A. McKenzie
* The C Window Library
* Copyright (C) 1990 All Rights Reserved
*/
#ifndef CURSOR_DEF
#define CURSOR_DEF
#include "proto.h"
#define CREATE_CURSOR_SHAPE(beginline,endline) ((beginline)<<4+(endline))
#define THIN 0x0B0C
#define BLOCK 0x0007
#define INVISIBLE 0x1F00
#if __cplusplus
extern "C" {
#endif
void GetCursorShape P((unsigned *, unsigned *));
void ChangeCursor P((unsigned, unsigned));
void BlockCursor P((void));
void ThinCursor P((void));
void HideCursor P((void));
#if _cplusplus
}
#endif
#endif